home *** CD-ROM | disk | FTP | other *** search
/ Building Homes of Our Own / Building Homes of our Own.iso / setup / data1.cab / Everything / working / houCons.dxr / exitFrameScripts_38.ls < prev    next >
Encoding:
Text File  |  2002-09-25  |  490 b   |  24 lines

  1. property done
  2.  
  3. on prepareFrame me
  4.   global gConMan
  5.   if seenIntro(gConMan, #walls) then
  6.     sendAllSprites(#sendToolBarCoverAway)
  7.     go(the frame + 1)
  8.   end if
  9. end
  10.  
  11. on exitFrame me
  12.   global gConMan, gToolBarTextMan
  13.   if seenIntro(gConMan, #walls) then
  14.     go(the frame + 1)
  15.   else
  16.     if not done then
  17.       sendAllSprites(#sendToolBarCoverAway)
  18.       sendAllSprites(#bringResourceButtonsForward)
  19.       setToolBarText(gToolBarTextMan, "bm_PreWalls")
  20.       done = 1
  21.     end if
  22.   end if
  23. end
  24.